home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dirut / ffind14e.zip / FFIND.DOC next >
Text File  |  1990-08-31  |  4KB  |  88 lines

  1.  
  2. NAME: FFIND.EXE (a smart file-finder).
  3.  
  4. PROGRAMMING LANGUAGE: Turbo Pascal 5.0.
  5.  
  6. VERSION: 1.4, of August 31st 1990.
  7.  
  8. AUTHOR: Charles Vachon
  9.         353 des frenes est #1
  10.         Quebec City, Quebec, Canada
  11.         G1L 1S2
  12.  
  13.  
  14. USE:   As it's name implies, this program is a file finder. What's so
  15.        special about FFIND is that it does not automatically search for
  16.        files beginning from the root directory of a drive. Instead, the
  17.        search is conducted ONLY FROM THE DEFAULT or SPECIFIED DIRECTORY.
  18.        The idea of this came to me after trying Norton's FF on a 330 Mb
  19.        Novell network drive to find that it could take several minutes
  20.        to locate a given file. If you have even only a vague idea of
  21.        where the file you want is, this program will be MUCH FASTER at
  22.        finding it than anything else you could try. Furthermore,
  23.        execution can be stopped at any moment (for example, after FFIND
  24.        has located the desired file) by pressing Escape.
  25.  
  26. COMMANDS: FFIND accepts commands by the DOS command line. The following
  27.        parameters are allowed (in any order and case), all other are
  28.        ignored:
  29.  
  30.        - the file specification of the file(s) to find. "*" and "?" can
  31.          be used to construct a generic file specification. Here are 2
  32.          examples:
  33.  
  34.          FFIND               Without parameters, FFIND will look for ALL
  35.                              files (*.*) on the default drive and
  36.                              directory, and also in all directories
  37.                              under the default one.
  38.  
  39.          FFIND d:\*.txt     FFIND will look on drive D: from the root
  40.                             directory for all files with a TXT
  41.                             extension.
  42.  
  43.        - the /A option is used to restrict file-finding ONLY to files
  44.          whose archive bit is ON (A+). DOS' BACKUP and most BACKUP
  45.          utilities reset this bit to A- upon backing up a file.
  46.  
  47.        - the /I option adds to the basic display the following
  48.          informations: file attributes, size, and last modification
  49.          time.
  50.  
  51.        - the /F option changes the display of the file names so that
  52.          these appear in their fully qualified form. By default (/F not
  53.          specified), a directory name appears alone, with file names
  54.          belonging to that directory under it. For example, the display
  55.          could be:
  56.  
  57.          D:\ARC\
  58.            UTILS.ZIP
  59.            TURBOSLS.EXE
  60.  
  61.          The /F option leads to the following equivalent display:
  62.  
  63.          D:\ARC\UTILS.ZIP
  64.          D:\ARC\TURBOSLS.EXE
  65.  
  66.          Note that /F and /I options cannot be used together. When both
  67.          are specified, files will be listed /f-style, but without any
  68.          extended information.
  69.  
  70.        - the /? option does nothing but displays a copyright notice and
  71.          syntax summary.
  72.  
  73. DISTRIBUTION: This utility is distributed under the shareware concept.
  74.        If after a 30 days evaluation period you wish to continue using
  75.        FFIND, please encourage it's author by sending a modest $2
  76.        contribution. Also, I ask you to only distribute FFIND in it's
  77.        complete form, comprised in FFIND14E.ZIP.
  78.  
  79. WARRANTY: In no event shall the author be liable for any loss of profit
  80.        or any other damage associated with the use of this program.
  81.  
  82. HISTORY:
  83.  
  84.        v1.3 (90.08.04): First distributed version.
  85.  
  86.        v1.4 (90.08.31): Corrects a bug which scrambled output when
  87.          redirection to other device than CRT was achieved.
  88.